home *** CD-ROM | disk | FTP | other *** search
Text File | 1995-03-06 | 599 b | 40 lines | [TEXT/MPS ] |
- //
- //
- // cursor.c
- //
- // Cursor handling routines.
- //
- //
- // Author: Rob Johnston
- // Date: Friday, Janurary 17, 1992
- //
- // Copyright © 1992-94 Apple Computer, Inc., All Rights Reserved
- //
-
- #include "Modeller_globals.h"
- #include "Modeller_prototypes.h"
- #include "Modeller_resources.h"
-
- #include "QD3DView.h"
- #include "QD3DDrawContext.h"
- #include "QD3DPick.h"
-
- #include "Modeller_cursor.h"
-
-
-
- void AdjustCursor(Point theLoc, RgnHandle theRgn)
- {
- // do nothing for now
- }
-
-
- void GetGlobalMouse(Point *theLoc)
-
- { EventRecord theEvent;
-
- OSEventAvail(0, &theEvent);
- *theLoc = theEvent.where;
- }
-
-